Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[REFACTOR] MyChallengeController에 Facade & DCI 패턴 적용 #235

Merged
merged 12 commits into from
Aug 6, 2024

Conversation

SSung023
Copy link
Contributor

@SSung023 SSung023 commented Aug 4, 2024

PR 타입(하나 이상의 PR 타입을 선택해주세요)

□ 기능 추가
□ 기능 삭제
☑ 리팩토링
□ 버그 수정
□ 의존성, 환경 변수, 빌드 관련 코드 업데이트


반영 브랜치

refactor/233-myChallenge-facademain


변경 사항

  • myChallenge에 Facade 패턴 도입: MyChallengeFacade 인터페이스 및 구현체 적용
  • myChallengeFacadeTest에 DCI 패턴 적용
  • ParticipantProvider → ParticipantService로 클래스명 변경

테스트 결과

image


연관된 이슈

#233


리뷰 요구사항(선택)

SSung023 added 11 commits July 31, 2024 10:03
- LazyInitialization으로 인해 아이템 구매가 안되는 버그 픽스
- Transactional 어노테이션 적용 및 영속화된 엔티티 전달을 통해 버그 픿흐
- PreActivityResponse에 정적 팩토리 메서드 적용
- ActivityResponse 정적 팩토리 메서드 네이밍 of로 변경
- MyChallengeService를 Facade 클래스로 변경
- Facade 인터페이스 선언 및 구현
- OrderService에 트랜잭션 어노테이션 추가
- Participant에 보상 컨디션 확인하는 메서드 추가
- Certification에 더미 데이터 생성하는 정적 팩토리 메서드 추가
- StoreFacade, MyChallengeFacade 코드 리팩토링
- Certification이 없을 때 더미 데이터를 생성하는 코드를 CertificationProvider로 변경
- ParticipantProvider에 보상 받는 메서드를 추가하고, 이를 호출하도록 리팩토링 (로직의 통일성을 위해)
- ParticipantProvider에서 ProviderService로 클래스명 변경
@SSung023 SSung023 added 💡feature 기능 구현, 개선 사항 관련 ⚙️ refactor 리팩토링 🧑🏻‍💻 BE 백엔드 관련 코드 🎮 test 테스트 코드 관련 labels Aug 4, 2024
@SSung023 SSung023 requested a review from kimdozzi August 4, 2024 13:55
@SSung023 SSung023 self-assigned this Aug 4, 2024
@SSung023 SSung023 linked an issue Aug 4, 2024 that may be closed by this pull request
2 tasks
Copy link

github-actions bot commented Aug 4, 2024

Test Results

127 files  127 suites   28s ⏱️
290 tests 290 ✅ 0 💤 0 ❌
298 runs  298 ✅ 0 💤 0 ❌

Results for commit aa2d84d.

♻️ This comment has been updated with latest results.

FileResponse fileResponse = filesService.convertToFileResponse(instance.getFiles());
Certification certification = certificationProvider.findOrGetDummy(targetDate, participant.getId());

//TODO: 로직 수정 필요
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

어떤 로직 수정이 필요할까요?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

어떤 로직 수정이 필요할까요?

앗!! 이제 삭제해도 되는 부분인데 깜박하고 안지웠네요! 수정하겠습니다 :)

Copy link
Contributor

@kimdozzi kimdozzi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨습니다 !^^

@SSung023 SSung023 merged commit 4ee60d5 into main Aug 6, 2024
2 checks passed
@SSung023 SSung023 deleted the refactor/233-myChallenge-facade branch August 6, 2024 04:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🧑🏻‍💻 BE 백엔드 관련 코드 💡feature 기능 구현, 개선 사항 관련 ⚙️ refactor 리팩토링 🎮 test 테스트 코드 관련
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[REFACTOR] MyChallengeController에 Facade & DCI 패턴 적용
2 participants